home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue57 / Clinic / ActiveXTestU.pas < prev    next >
Pascal/Delphi Source File  |  2000-03-24  |  388b  |  27 lines

  1. unit ActiveXTestU;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ActiveX_TLB, OleCtrls;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     ButtonX1: TButtonX;
  12.     ActiveFormX1: TActiveFormX;
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   Form1: TForm1;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. end.
  27.